git bundle
Table of Content
Git bundle is a utility that allow you to pack repository, branch, specific commit to signal file and expend them easily.
Demo: Bundle Range of commits#
bundle#
view commits
git log --oneline origin/master..master
bundle commits
git bundle create patch.bundle origin/master..master
Unbundling#
git branch temp
git switch temp
git fetch -u patch.bundle master:temp
git switch master
git merge temp
git branch --delete temp